@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

html {
  scroll-padding-left: 200px;
}

html, body {
  font-family: Arial, sans-serif;
  min-width: 300px;
  line-height: 1.5;
}

body {
  display: block;
  margin: 5px;
  position: relative;
}

#navbar {
  display: block;
  position: fixed;
  align-items: left;
  min-width: 185px;
  top: 0;
  left: 0;
  height: 100%;
  border-right: 2px solid;
  background: white;
  z-index: 1;
}

#navbar header {
  text-align: center;
  margin: 10px;
}

#navbar ul {
  padding: 5px;
}

#navbar li {
  list-style: none;
  position: relative;
  line-height: 2.5;
  border-top: 2px solid;
  padding: 0;
  width: 100%;
}

li a {
  color: black;
  text-decoration: none;
}

li a:visited {
  color: black;
}

li a:hover {
  color: black;
}

li a:active {
  color: black;
}

main {
  display: block;
  position: absolute;
  left: 200px;
  max-width: 1000px;
  min-width: 500px;
}

main p, main ul {
  font-size: 10pt;
}

hr {
  border-color: black;
}

code {
  background-color: whitesmoke;
  color: firebrick;
}